/* =========================
   GLOBAL STYLES
========================= */
body {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  padding-top: 140px; /* Adjust for fixed-top header + contact bar */
  background-color: #fff;
  color: #333;
}

a {
  text-decoration: none;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  transition: all 0.3s ease;
}

.navbar .nav-link.custom-link {
  font-weight: 500;
  color: #333;
}

.navbar .nav-link.custom-link:hover,
.navbar .nav-link.custom-link.active {
  color: #0d47a1;
}

/* =========================
   HERO CAROUSEL
========================= */
/* =========================
   HERO SLIDES BACKGROUNDS
========================= */
.hero-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 140px);
  position: relative;
  transition: background 0.5s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

/* Individual slide backgrounds */
.hero-slide-1 {
  background: url('home carousel 1.jpg') center/cover no-repeat;
}

.hero-slide-2 {
  background: url('home carousel 2.jpg') center/cover no-repeat;
}

.hero-slide-3 {
  background: url('home carousel 3.jpg') center/cover no-repeat;
}
